home *** CD-ROM | disk | FTP | other *** search
/ Network CD 2 / Network CD - Volume 2.iso / programs / internet / tcp / mail / amitcp_ups10.lha / orig / README < prev    next >
Encoding:
Text File  |  1993-10-03  |  1.4 KB  |  39 lines

  1. README for ups - the package delivery system
  2.  
  3. ups is a system (actually just two programs) for delivering files between
  4. users.  It works just like mail, except that accepting delivery implies
  5. the movement of files.  Basically, a user just types to the shell the
  6. following:
  7.     ups user file1 file2 ...
  8. this will cause the files file1, file2, ... to be copied into a spool area
  9. and a mail message to be sent to 'user' informing them that there are files
  10. awaiting them in ups.  To receive the files a user simply types 'ups' to
  11. the shell and gets a list of files which are awaiting delivery and is
  12. asked if they wish to accept delivery in the current directory.
  13.  
  14. What's required
  15.  
  16. ups was written for a 4.3bsd network of vaxes.  It will probably work on
  17. a 2.9 or 4.2 system without a lot of work.  Other machines will certainly
  18. require work.
  19.  
  20. Installation
  21.  
  22.     1)  Add ups to the table of known ports in /etc/services as follows:
  23.  
  24.     ups    600/tcp
  25.  
  26.     2)  Add ups to the inetd configuration file /etc/inetd.conf:
  27.  
  28.     ups    stream    tcp    nowait    root    /usr/local/lib/upsd    upsd
  29.  
  30.     3) Make ups and upsd by just saying "make all"
  31.     
  32.     4)  And finally install ups and upsd.  We installed upsd in /usr/local/lib 
  33.         (as shown above) and this is where make install will put it.
  34.         Install ups by just saying "make install"
  35.     
  36.     We also added a line to our standard .login file of the form: ups -q.  This will 
  37.     inform users at login time if files are awaiting them.
  38.     
  39.